This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Yep..Declared as NotesDocumentCollection ~Ben Desaetsi 14.Nov.02 05:21 AM a Web browser Toolkits 6.0Windows 2000
To look at this from the Notes C API point of view, the following 'assumptions' could be made:
1. DB.Search() uses the API NSFSearch(dbhandle,...,SearchProcedure()). This API calls 'SearchProcedure()' for each match found. ie, results are produced one at a time, otherwise you need to compile your own collection programmatically.
2. DB.FTSearch(xxx) uses the API FTSearch(dbhandle,SearchHandle,...). This API creates a FT_SEARCH_RESULTS structure containing NoteIDs and result data. ie, results are gathered, then action is taken.
3. Assumption: DXLExporter may be written to only handle the first type of search because its exporting function is called for each match found. Whereas the DXLExporter would need to handle FT_SEARCH_RESULTS quite differently.
I haven't examined this in detail, but it may be worth asking IRIS/Lotus/IBM for detailed information on exactly what structures and objects are supported by the Exporter...